Advertisement
Guest User

SQLiteDatabase.generated.h

a guest
Mar 26th, 2019
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.11 KB | None | 0 0
  1. SQLiteDatabase.generated.h:
  2.  
  3. // Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
  4. /*===========================================================================
  5. Generated code exported from UnrealHeaderTool.
  6. DO NOT modify this manually! Edit the corresponding .h files instead!
  7. ===========================================================================*/
  8.  
  9. #include "UObject/ObjectMacros.h"
  10. #include "UObject/ScriptMacros.h"
  11.  
  12. PRAGMA_DISABLE_DEPRECATION_WARNINGS
  13. struct FSQLiteTableRowSimulator;
  14. struct FSQLiteIndex;
  15. struct FSQLiteTableField;
  16. struct FSQLitePrimaryKey;
  17. struct FSQLiteTable;
  18. struct FSQLiteDatabaseReference;
  19. struct FSQLiteQueryFinalizedQuery;
  20. struct FSQLiteQueryResult;
  21. class UObject;
  22. #ifdef CISQLITE3_SQLiteDatabase_generated_h
  23. #error "SQLiteDatabase.generated.h already included, missing '#pragma once' in SQLiteDatabase.h"
  24. #endif
  25. #define CISQLITE3_SQLiteDatabase_generated_h
  26.  
  27. #define MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_48_GENERATED_BODY \
  28. friend struct Z_Construct_UScriptStruct_FSQLiteQueryResult_Statics; \
  29. static class UScriptStruct* StaticStruct();
  30.  
  31.  
  32. #define MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_38_GENERATED_BODY \
  33. friend struct Z_Construct_UScriptStruct_FSQLiteQueryResultRow_Statics; \
  34. static class UScriptStruct* StaticStruct();
  35.  
  36.  
  37. #define MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_24_GENERATED_BODY \
  38. friend struct Z_Construct_UScriptStruct_FSQLiteKeyValuePair_Statics; \
  39. static class UScriptStruct* StaticStruct();
  40.  
  41.  
  42. #define MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_10_GENERATED_BODY \
  43. friend struct Z_Construct_UScriptStruct_FSQLiteDatabaseReference_Statics; \
  44. static class UScriptStruct* StaticStruct();
  45.  
  46.  
  47. #define MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_124_RPC_WRAPPERS \
  48. \
  49. DECLARE_FUNCTION(execIsValidDatabase) \
  50. { \
  51. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseFilename); \
  52. P_GET_UBOOL(Z_Param_TestByOpening); \
  53. P_FINISH; \
  54. P_NATIVE_BEGIN; \
  55. *(bool*)Z_Param__Result=USQLiteDatabase::IsValidDatabase(Z_Param_DatabaseFilename,Z_Param_TestByOpening); \
  56. P_NATIVE_END; \
  57. } \
  58. \
  59. DECLARE_FUNCTION(execExecSql) \
  60. { \
  61. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  62. P_GET_PROPERTY(UStrProperty,Z_Param_Query); \
  63. P_FINISH; \
  64. P_NATIVE_BEGIN; \
  65. *(bool*)Z_Param__Result=USQLiteDatabase::ExecSql(Z_Param_DatabaseName,Z_Param_Query); \
  66. P_NATIVE_END; \
  67. } \
  68. \
  69. DECLARE_FUNCTION(execVacuum) \
  70. { \
  71. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  72. P_FINISH; \
  73. P_NATIVE_BEGIN; \
  74. *(bool*)Z_Param__Result=USQLiteDatabase::Vacuum(Z_Param_DatabaseName); \
  75. P_NATIVE_END; \
  76. } \
  77. \
  78. DECLARE_FUNCTION(execInsertRowsIntoTable) \
  79. { \
  80. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  81. P_GET_PROPERTY(UStrProperty,Z_Param_TableName); \
  82. P_GET_TARRAY(FSQLiteTableRowSimulator,Z_Param_rowsOfFields); \
  83. P_FINISH; \
  84. P_NATIVE_BEGIN; \
  85. USQLiteDatabase::InsertRowsIntoTable(Z_Param_DatabaseName,Z_Param_TableName,Z_Param_rowsOfFields); \
  86. P_NATIVE_END; \
  87. } \
  88. \
  89. DECLARE_FUNCTION(execIsTableExists) \
  90. { \
  91. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  92. P_GET_PROPERTY(UStrProperty,Z_Param_TableName); \
  93. P_FINISH; \
  94. P_NATIVE_BEGIN; \
  95. *(bool*)Z_Param__Result=USQLiteDatabase::IsTableExists(Z_Param_DatabaseName,Z_Param_TableName); \
  96. P_NATIVE_END; \
  97. } \
  98. \
  99. DECLARE_FUNCTION(execTruncateTable) \
  100. { \
  101. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  102. P_GET_PROPERTY(UStrProperty,Z_Param_TableName); \
  103. P_FINISH; \
  104. P_NATIVE_BEGIN; \
  105. *(bool*)Z_Param__Result=USQLiteDatabase::TruncateTable(Z_Param_DatabaseName,Z_Param_TableName); \
  106. P_NATIVE_END; \
  107. } \
  108. \
  109. DECLARE_FUNCTION(execDropTable) \
  110. { \
  111. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  112. P_GET_PROPERTY(UStrProperty,Z_Param_TableName); \
  113. P_FINISH; \
  114. P_NATIVE_BEGIN; \
  115. *(bool*)Z_Param__Result=USQLiteDatabase::DropTable(Z_Param_DatabaseName,Z_Param_TableName); \
  116. P_NATIVE_END; \
  117. } \
  118. \
  119. DECLARE_FUNCTION(execDropIndex) \
  120. { \
  121. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  122. P_GET_PROPERTY(UStrProperty,Z_Param_IndexName); \
  123. P_FINISH; \
  124. P_NATIVE_BEGIN; \
  125. *(bool*)Z_Param__Result=USQLiteDatabase::DropIndex(Z_Param_DatabaseName,Z_Param_IndexName); \
  126. P_NATIVE_END; \
  127. } \
  128. \
  129. DECLARE_FUNCTION(execCreateIndex) \
  130. { \
  131. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  132. P_GET_PROPERTY(UStrProperty,Z_Param_TableName); \
  133. P_GET_STRUCT(FSQLiteIndex,Z_Param_Index); \
  134. P_FINISH; \
  135. P_NATIVE_BEGIN; \
  136. *(bool*)Z_Param__Result=USQLiteDatabase::CreateIndex(Z_Param_DatabaseName,Z_Param_TableName,Z_Param_Index); \
  137. P_NATIVE_END; \
  138. } \
  139. \
  140. DECLARE_FUNCTION(execCreateIndexes) \
  141. { \
  142. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  143. P_GET_PROPERTY(UStrProperty,Z_Param_TableName); \
  144. P_GET_TARRAY(FSQLiteIndex,Z_Param_Indexes); \
  145. P_FINISH; \
  146. P_NATIVE_BEGIN; \
  147. *(bool*)Z_Param__Result=USQLiteDatabase::CreateIndexes(Z_Param_DatabaseName,Z_Param_TableName,Z_Param_Indexes); \
  148. P_NATIVE_END; \
  149. } \
  150. \
  151. DECLARE_FUNCTION(execCreateTable) \
  152. { \
  153. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  154. P_GET_PROPERTY(UStrProperty,Z_Param_TableName); \
  155. P_GET_TARRAY(FSQLiteTableField,Z_Param_Fields); \
  156. P_GET_STRUCT(FSQLitePrimaryKey,Z_Param_PK); \
  157. P_FINISH; \
  158. P_NATIVE_BEGIN; \
  159. *(FSQLiteTable*)Z_Param__Result=USQLiteDatabase::CreateTable(Z_Param_DatabaseName,Z_Param_TableName,Z_Param_Fields,Z_Param_PK); \
  160. P_NATIVE_END; \
  161. } \
  162. \
  163. DECLARE_FUNCTION(execGetDataBP) \
  164. { \
  165. P_GET_STRUCT_REF(FSQLiteDatabaseReference,Z_Param_Out_DataSource); \
  166. P_GET_TARRAY(FString,Z_Param_Fields); \
  167. P_GET_STRUCT(FSQLiteQueryFinalizedQuery,Z_Param_Query); \
  168. P_GET_PROPERTY(UIntProperty,Z_Param_MaxResults); \
  169. P_GET_PROPERTY(UIntProperty,Z_Param_ResultOffset); \
  170. P_FINISH; \
  171. P_NATIVE_BEGIN; \
  172. *(FSQLiteQueryResult*)Z_Param__Result=USQLiteDatabase::GetDataBP(Z_Param_Out_DataSource,Z_Param_Fields,Z_Param_Query,Z_Param_MaxResults,Z_Param_ResultOffset); \
  173. P_NATIVE_END; \
  174. } \
  175. \
  176. DECLARE_FUNCTION(execGetData) \
  177. { \
  178. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  179. P_GET_PROPERTY(UStrProperty,Z_Param_Query); \
  180. P_FINISH; \
  181. P_NATIVE_BEGIN; \
  182. *(FSQLiteQueryResult*)Z_Param__Result=USQLiteDatabase::GetData(Z_Param_DatabaseName,Z_Param_Query); \
  183. P_NATIVE_END; \
  184. } \
  185. \
  186. DECLARE_FUNCTION(execGetDataIntoObjectBP) \
  187. { \
  188. P_GET_STRUCT_REF(FSQLiteDatabaseReference,Z_Param_Out_DataSource); \
  189. P_GET_TARRAY(FString,Z_Param_Fields); \
  190. P_GET_STRUCT(FSQLiteQueryFinalizedQuery,Z_Param_Query); \
  191. P_GET_OBJECT(UObject,Z_Param_ObjectToPopulate); \
  192. P_FINISH; \
  193. P_NATIVE_BEGIN; \
  194. *(bool*)Z_Param__Result=USQLiteDatabase::GetDataIntoObjectBP(Z_Param_Out_DataSource,Z_Param_Fields,Z_Param_Query,Z_Param_ObjectToPopulate); \
  195. P_NATIVE_END; \
  196. } \
  197. \
  198. DECLARE_FUNCTION(execGetDataIntoObject) \
  199. { \
  200. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  201. P_GET_PROPERTY(UStrProperty,Z_Param_Query); \
  202. P_GET_OBJECT(UObject,Z_Param_ObjectToPopulate); \
  203. P_FINISH; \
  204. P_NATIVE_BEGIN; \
  205. *(bool*)Z_Param__Result=USQLiteDatabase::GetDataIntoObject(Z_Param_DatabaseName,Z_Param_Query,Z_Param_ObjectToPopulate); \
  206. P_NATIVE_END; \
  207. } \
  208. \
  209. DECLARE_FUNCTION(execIsDatabaseRegistered) \
  210. { \
  211. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  212. P_FINISH; \
  213. P_NATIVE_BEGIN; \
  214. *(bool*)Z_Param__Result=USQLiteDatabase::IsDatabaseRegistered(Z_Param_DatabaseName); \
  215. P_NATIVE_END; \
  216. } \
  217. \
  218. DECLARE_FUNCTION(execUnregisterDatabase) \
  219. { \
  220. P_GET_PROPERTY(UStrProperty,Z_Param_Name); \
  221. P_FINISH; \
  222. P_NATIVE_BEGIN; \
  223. USQLiteDatabase::UnregisterDatabase(Z_Param_Name); \
  224. P_NATIVE_END; \
  225. } \
  226. \
  227. DECLARE_FUNCTION(execRegisterDatabase) \
  228. { \
  229. P_GET_PROPERTY(UStrProperty,Z_Param_Name); \
  230. P_GET_PROPERTY(UStrProperty,Z_Param_Filename); \
  231. P_GET_UBOOL(Z_Param_RelativeToGameContentDirectory); \
  232. P_GET_UBOOL(Z_Param_KeepOpen); \
  233. P_FINISH; \
  234. P_NATIVE_BEGIN; \
  235. *(bool*)Z_Param__Result=USQLiteDatabase::RegisterDatabase(Z_Param_Name,Z_Param_Filename,Z_Param_RelativeToGameContentDirectory,Z_Param_KeepOpen); \
  236. P_NATIVE_END; \
  237. } \
  238. \
  239. DECLARE_FUNCTION(execCreateDatabase) \
  240. { \
  241. P_GET_PROPERTY(UStrProperty,Z_Param_Filename); \
  242. P_GET_UBOOL(Z_Param_RelativeToGameContentDirectory); \
  243. P_FINISH; \
  244. P_NATIVE_BEGIN; \
  245. *(bool*)Z_Param__Result=USQLiteDatabase::CreateDatabase(Z_Param_Filename,Z_Param_RelativeToGameContentDirectory); \
  246. P_NATIVE_END; \
  247. }
  248.  
  249.  
  250. #define MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_124_RPC_WRAPPERS_NO_PURE_DECLS \
  251. \
  252. DECLARE_FUNCTION(execIsValidDatabase) \
  253. { \
  254. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseFilename); \
  255. P_GET_UBOOL(Z_Param_TestByOpening); \
  256. P_FINISH; \
  257. P_NATIVE_BEGIN; \
  258. *(bool*)Z_Param__Result=USQLiteDatabase::IsValidDatabase(Z_Param_DatabaseFilename,Z_Param_TestByOpening); \
  259. P_NATIVE_END; \
  260. } \
  261. \
  262. DECLARE_FUNCTION(execExecSql) \
  263. { \
  264. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  265. P_GET_PROPERTY(UStrProperty,Z_Param_Query); \
  266. P_FINISH; \
  267. P_NATIVE_BEGIN; \
  268. *(bool*)Z_Param__Result=USQLiteDatabase::ExecSql(Z_Param_DatabaseName,Z_Param_Query); \
  269. P_NATIVE_END; \
  270. } \
  271. \
  272. DECLARE_FUNCTION(execVacuum) \
  273. { \
  274. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  275. P_FINISH; \
  276. P_NATIVE_BEGIN; \
  277. *(bool*)Z_Param__Result=USQLiteDatabase::Vacuum(Z_Param_DatabaseName); \
  278. P_NATIVE_END; \
  279. } \
  280. \
  281. DECLARE_FUNCTION(execInsertRowsIntoTable) \
  282. { \
  283. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  284. P_GET_PROPERTY(UStrProperty,Z_Param_TableName); \
  285. P_GET_TARRAY(FSQLiteTableRowSimulator,Z_Param_rowsOfFields); \
  286. P_FINISH; \
  287. P_NATIVE_BEGIN; \
  288. USQLiteDatabase::InsertRowsIntoTable(Z_Param_DatabaseName,Z_Param_TableName,Z_Param_rowsOfFields); \
  289. P_NATIVE_END; \
  290. } \
  291. \
  292. DECLARE_FUNCTION(execIsTableExists) \
  293. { \
  294. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  295. P_GET_PROPERTY(UStrProperty,Z_Param_TableName); \
  296. P_FINISH; \
  297. P_NATIVE_BEGIN; \
  298. *(bool*)Z_Param__Result=USQLiteDatabase::IsTableExists(Z_Param_DatabaseName,Z_Param_TableName); \
  299. P_NATIVE_END; \
  300. } \
  301. \
  302. DECLARE_FUNCTION(execTruncateTable) \
  303. { \
  304. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  305. P_GET_PROPERTY(UStrProperty,Z_Param_TableName); \
  306. P_FINISH; \
  307. P_NATIVE_BEGIN; \
  308. *(bool*)Z_Param__Result=USQLiteDatabase::TruncateTable(Z_Param_DatabaseName,Z_Param_TableName); \
  309. P_NATIVE_END; \
  310. } \
  311. \
  312. DECLARE_FUNCTION(execDropTable) \
  313. { \
  314. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  315. P_GET_PROPERTY(UStrProperty,Z_Param_TableName); \
  316. P_FINISH; \
  317. P_NATIVE_BEGIN; \
  318. *(bool*)Z_Param__Result=USQLiteDatabase::DropTable(Z_Param_DatabaseName,Z_Param_TableName); \
  319. P_NATIVE_END; \
  320. } \
  321. \
  322. DECLARE_FUNCTION(execDropIndex) \
  323. { \
  324. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  325. P_GET_PROPERTY(UStrProperty,Z_Param_IndexName); \
  326. P_FINISH; \
  327. P_NATIVE_BEGIN; \
  328. *(bool*)Z_Param__Result=USQLiteDatabase::DropIndex(Z_Param_DatabaseName,Z_Param_IndexName); \
  329. P_NATIVE_END; \
  330. } \
  331. \
  332. DECLARE_FUNCTION(execCreateIndex) \
  333. { \
  334. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  335. P_GET_PROPERTY(UStrProperty,Z_Param_TableName); \
  336. P_GET_STRUCT(FSQLiteIndex,Z_Param_Index); \
  337. P_FINISH; \
  338. P_NATIVE_BEGIN; \
  339. *(bool*)Z_Param__Result=USQLiteDatabase::CreateIndex(Z_Param_DatabaseName,Z_Param_TableName,Z_Param_Index); \
  340. P_NATIVE_END; \
  341. } \
  342. \
  343. DECLARE_FUNCTION(execCreateIndexes) \
  344. { \
  345. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  346. P_GET_PROPERTY(UStrProperty,Z_Param_TableName); \
  347. P_GET_TARRAY(FSQLiteIndex,Z_Param_Indexes); \
  348. P_FINISH; \
  349. P_NATIVE_BEGIN; \
  350. *(bool*)Z_Param__Result=USQLiteDatabase::CreateIndexes(Z_Param_DatabaseName,Z_Param_TableName,Z_Param_Indexes); \
  351. P_NATIVE_END; \
  352. } \
  353. \
  354. DECLARE_FUNCTION(execCreateTable) \
  355. { \
  356. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  357. P_GET_PROPERTY(UStrProperty,Z_Param_TableName); \
  358. P_GET_TARRAY(FSQLiteTableField,Z_Param_Fields); \
  359. P_GET_STRUCT(FSQLitePrimaryKey,Z_Param_PK); \
  360. P_FINISH; \
  361. P_NATIVE_BEGIN; \
  362. *(FSQLiteTable*)Z_Param__Result=USQLiteDatabase::CreateTable(Z_Param_DatabaseName,Z_Param_TableName,Z_Param_Fields,Z_Param_PK); \
  363. P_NATIVE_END; \
  364. } \
  365. \
  366. DECLARE_FUNCTION(execGetDataBP) \
  367. { \
  368. P_GET_STRUCT_REF(FSQLiteDatabaseReference,Z_Param_Out_DataSource); \
  369. P_GET_TARRAY(FString,Z_Param_Fields); \
  370. P_GET_STRUCT(FSQLiteQueryFinalizedQuery,Z_Param_Query); \
  371. P_GET_PROPERTY(UIntProperty,Z_Param_MaxResults); \
  372. P_GET_PROPERTY(UIntProperty,Z_Param_ResultOffset); \
  373. P_FINISH; \
  374. P_NATIVE_BEGIN; \
  375. *(FSQLiteQueryResult*)Z_Param__Result=USQLiteDatabase::GetDataBP(Z_Param_Out_DataSource,Z_Param_Fields,Z_Param_Query,Z_Param_MaxResults,Z_Param_ResultOffset); \
  376. P_NATIVE_END; \
  377. } \
  378. \
  379. DECLARE_FUNCTION(execGetData) \
  380. { \
  381. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  382. P_GET_PROPERTY(UStrProperty,Z_Param_Query); \
  383. P_FINISH; \
  384. P_NATIVE_BEGIN; \
  385. *(FSQLiteQueryResult*)Z_Param__Result=USQLiteDatabase::GetData(Z_Param_DatabaseName,Z_Param_Query); \
  386. P_NATIVE_END; \
  387. } \
  388. \
  389. DECLARE_FUNCTION(execGetDataIntoObjectBP) \
  390. { \
  391. P_GET_STRUCT_REF(FSQLiteDatabaseReference,Z_Param_Out_DataSource); \
  392. P_GET_TARRAY(FString,Z_Param_Fields); \
  393. P_GET_STRUCT(FSQLiteQueryFinalizedQuery,Z_Param_Query); \
  394. P_GET_OBJECT(UObject,Z_Param_ObjectToPopulate); \
  395. P_FINISH; \
  396. P_NATIVE_BEGIN; \
  397. *(bool*)Z_Param__Result=USQLiteDatabase::GetDataIntoObjectBP(Z_Param_Out_DataSource,Z_Param_Fields,Z_Param_Query,Z_Param_ObjectToPopulate); \
  398. P_NATIVE_END; \
  399. } \
  400. \
  401. DECLARE_FUNCTION(execGetDataIntoObject) \
  402. { \
  403. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  404. P_GET_PROPERTY(UStrProperty,Z_Param_Query); \
  405. P_GET_OBJECT(UObject,Z_Param_ObjectToPopulate); \
  406. P_FINISH; \
  407. P_NATIVE_BEGIN; \
  408. *(bool*)Z_Param__Result=USQLiteDatabase::GetDataIntoObject(Z_Param_DatabaseName,Z_Param_Query,Z_Param_ObjectToPopulate); \
  409. P_NATIVE_END; \
  410. } \
  411. \
  412. DECLARE_FUNCTION(execIsDatabaseRegistered) \
  413. { \
  414. P_GET_PROPERTY(UStrProperty,Z_Param_DatabaseName); \
  415. P_FINISH; \
  416. P_NATIVE_BEGIN; \
  417. *(bool*)Z_Param__Result=USQLiteDatabase::IsDatabaseRegistered(Z_Param_DatabaseName); \
  418. P_NATIVE_END; \
  419. } \
  420. \
  421. DECLARE_FUNCTION(execUnregisterDatabase) \
  422. { \
  423. P_GET_PROPERTY(UStrProperty,Z_Param_Name); \
  424. P_FINISH; \
  425. P_NATIVE_BEGIN; \
  426. USQLiteDatabase::UnregisterDatabase(Z_Param_Name); \
  427. P_NATIVE_END; \
  428. } \
  429. \
  430. DECLARE_FUNCTION(execRegisterDatabase) \
  431. { \
  432. P_GET_PROPERTY(UStrProperty,Z_Param_Name); \
  433. P_GET_PROPERTY(UStrProperty,Z_Param_Filename); \
  434. P_GET_UBOOL(Z_Param_RelativeToGameContentDirectory); \
  435. P_GET_UBOOL(Z_Param_KeepOpen); \
  436. P_FINISH; \
  437. P_NATIVE_BEGIN; \
  438. *(bool*)Z_Param__Result=USQLiteDatabase::RegisterDatabase(Z_Param_Name,Z_Param_Filename,Z_Param_RelativeToGameContentDirectory,Z_Param_KeepOpen); \
  439. P_NATIVE_END; \
  440. } \
  441. \
  442. DECLARE_FUNCTION(execCreateDatabase) \
  443. { \
  444. P_GET_PROPERTY(UStrProperty,Z_Param_Filename); \
  445. P_GET_UBOOL(Z_Param_RelativeToGameContentDirectory); \
  446. P_FINISH; \
  447. P_NATIVE_BEGIN; \
  448. *(bool*)Z_Param__Result=USQLiteDatabase::CreateDatabase(Z_Param_Filename,Z_Param_RelativeToGameContentDirectory); \
  449. P_NATIVE_END; \
  450. }
  451.  
  452.  
  453. #define MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_124_INCLASS_NO_PURE_DECLS \
  454. private: \
  455. static void StaticRegisterNativesUSQLiteDatabase(); \
  456. friend struct Z_Construct_UClass_USQLiteDatabase_Statics; \
  457. public: \
  458. DECLARE_CLASS(USQLiteDatabase, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CISQLite3"), NO_API) \
  459. DECLARE_SERIALIZER(USQLiteDatabase)
  460.  
  461.  
  462. #define MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_124_INCLASS \
  463. private: \
  464. static void StaticRegisterNativesUSQLiteDatabase(); \
  465. friend struct Z_Construct_UClass_USQLiteDatabase_Statics; \
  466. public: \
  467. DECLARE_CLASS(USQLiteDatabase, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CISQLite3"), NO_API) \
  468. DECLARE_SERIALIZER(USQLiteDatabase)
  469.  
  470.  
  471. #define MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_124_STANDARD_CONSTRUCTORS \
  472. /** Standard constructor, called after all reflected properties have been initialized */ \
  473. NO_API USQLiteDatabase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \
  474. DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(USQLiteDatabase) \
  475. DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, USQLiteDatabase); \
  476. DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(USQLiteDatabase); \
  477. private: \
  478. /** Private move- and copy-constructors, should never be used */ \
  479. NO_API USQLiteDatabase(USQLiteDatabase&&); \
  480. NO_API USQLiteDatabase(const USQLiteDatabase&); \
  481. public:
  482.  
  483.  
  484. #define MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_124_ENHANCED_CONSTRUCTORS \
  485. /** Standard constructor, called after all reflected properties have been initialized */ \
  486. NO_API USQLiteDatabase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()) : Super(ObjectInitializer) { }; \
  487. private: \
  488. /** Private move- and copy-constructors, should never be used */ \
  489. NO_API USQLiteDatabase(USQLiteDatabase&&); \
  490. NO_API USQLiteDatabase(const USQLiteDatabase&); \
  491. public: \
  492. DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, USQLiteDatabase); \
  493. DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(USQLiteDatabase); \
  494. DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(USQLiteDatabase)
  495.  
  496.  
  497. #define MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_124_PRIVATE_PROPERTY_OFFSET
  498. #define MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_121_PROLOG
  499. #define MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_124_GENERATED_BODY_LEGACY \
  500. PRAGMA_DISABLE_DEPRECATION_WARNINGS \
  501. public: \
  502. MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_124_PRIVATE_PROPERTY_OFFSET \
  503. MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_124_RPC_WRAPPERS \
  504. MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_124_INCLASS \
  505. MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_124_STANDARD_CONSTRUCTORS \
  506. public: \
  507. PRAGMA_ENABLE_DEPRECATION_WARNINGS
  508.  
  509.  
  510. #define MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_124_GENERATED_BODY \
  511. PRAGMA_DISABLE_DEPRECATION_WARNINGS \
  512. public: \
  513. MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_124_PRIVATE_PROPERTY_OFFSET \
  514. MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_124_RPC_WRAPPERS_NO_PURE_DECLS \
  515. MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_124_INCLASS_NO_PURE_DECLS \
  516. MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h_124_ENHANCED_CONSTRUCTORS \
  517. static_assert(false, "Unknown access specifier for GENERATED_BODY() macro in class SQLiteDatabase."); \
  518. PRAGMA_ENABLE_DEPRECATION_WARNINGS
  519.  
  520.  
  521. #undef CURRENT_FILE_ID
  522. #define CURRENT_FILE_ID MiningTechDemo5_Plugins_CISQLite3_Source_CISQLite3_Public_SQLiteDatabase_h
  523.  
  524.  
  525. PRAGMA_ENABLE_DEPRECATION_WARNINGS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement