mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-04-02 18:25:30 +02:00
Setting code formatting standard to allman.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/* This file is subject to the terms and conditions defined in
|
||||
* file 'LICENSE.txt', which is part of this source code package.
|
||||
/* This file is subject to the terms and conditions defined in
|
||||
* file 'LICENSE.txt', which is part of this source code package.
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
@@ -8,14 +8,17 @@
|
||||
class DB
|
||||
{
|
||||
public:
|
||||
DB(std::string dbFile);
|
||||
bool Initialize();
|
||||
void DeInitialize();
|
||||
virtual ~DB();
|
||||
sqlite3 *GetHandle() { return Handle; }
|
||||
DB(std::string dbFile);
|
||||
bool Initialize();
|
||||
void DeInitialize();
|
||||
virtual ~DB();
|
||||
sqlite3 *GetHandle()
|
||||
{
|
||||
return Handle;
|
||||
}
|
||||
|
||||
private:
|
||||
sqlite3 *Handle;
|
||||
std::string Path;
|
||||
sqlite3 *Handle;
|
||||
std::string Path;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user