File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed
backtesting-engine-cpp.xcodeproj/project.xcworkspace/xcuserdata/ryan.xcuserdatad Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 44// This code is licensed under MIT license (see LICENSE.txt for details)
55// ---------------------------------------
66
7- #include " Base64 .hpp"
7+ #include " base64 .hpp"
88
99static const char * B64chars = " ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" ;
1010
Original file line number Diff line number Diff line change 44// This code is licensed under MIT license (see LICENSE.txt for details)
55// ---------------------------------------
66
7- // Using the Objective-C Framework to build XCTestCases
8-
97#import < XCTest/XCTest.h>
108#import " application.hpp"
119#import " databaseConnection.hpp"
1210
11+ // Using the Objective-C Framework to build XCTestCases
12+ // This code is a mix of Objective-C and C++, commonly referred to as Objective-C++.
13+ // This is possible because .mm files in Apple's ecosystem allow Objective-C and C++ code to coexist.
14+
1315@interface dbtests : XCTestCase
1416@end
1517
Original file line number Diff line number Diff line change 44// This code is licensed under MIT license (see LICENSE.txt for details)
55// ---------------------------------------
66
7+
78#import < XCTest/XCTest.h>
89#import " application.hpp"
910#import " databaseConnection.hpp"
1011
12+ // Using the Objective-C Framework to build XCTestCases
13+ // This code is a mix of Objective-C and C++, commonly referred to as Objective-C++.
14+ // This is possible because .mm files in Apple's ecosystem allow Objective-C and C++ code to coexist.
15+
1116@interface tests : XCTestCase
1217@end
1318
You can’t perform that action at this time.
0 commit comments