GnuCashew ~ Web Application compatible with GnuCash sql data files.
GCW
Loading...
Searching...
No Matches
Engine.cpp
Go to the documentation of this file.
1#line 2 "src/Eng/Engine.cpp"
2
3#include <iostream>
4
5//#include <gnucash/gnc-session.h>
6//#include <gnucash/Account.h>
7//#include <gnucash/Transaction.h>
8//#include <gnucash/qofsession.h>
9
10#include "Engine.h"
11
13Engine()
14{
15} // endGCW::Eng::Engine::Engine()
16
17bool
19open( const std::string & _filePath )
20{
21 if( isOpen() )
22 return true;
23
24 std::cout << __FILE__ << ":" << __LINE__ << " " << _filePath << std::endl;
25
26 return true;
27}
28
29bool
31isOpen()
32{
33 return true;
34}
35
36bool
39{
40 return true;
41}
bool hasGnucashewExtensions()
Database has Gnucashew Extensions.
Definition Engine.cpp:38
bool open(const std::string &_filePath)
Open the Database.
Definition Engine.cpp:19
bool isOpen()
Is Database Open.
Definition Engine.cpp:31