forked from grantrostig/cpp_by_example
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmy_api.cpp
More file actions
16 lines (10 loc) · 516 Bytes
/
my_api.cpp
File metadata and controls
16 lines (10 loc) · 516 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "my_api.hpp" // ME FIRST!! my stuff must be first in this file. // ordering: and all other stuff for the API
//#include "third_party.hpp" // ordering: and all other stuff for the API // and alphabetical
#include <boost/aligned_storage.hpp> // and all other stuff for the API
#include <string> // DONT because I control the header.
/* anything <> are headers mostly std and maybe POSIX ie. OS files
"" are user includes only.
*/
static std::string s_va_string;
Vendor_api::Vendor_api() {
}