GnuCashew ~ GnuCash Enabled Web
GCW
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 
13 Engine()
14 {
15 } // endGCW::Eng::Engine::Engine()
16 
17 bool
19 open( 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 
29 bool
31 isOpen()
32 {
33  return true;
34 }
35 
36 bool
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