acme
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Pages Concepts
aaa_file_system.h
1#pragma once
2
3
5//#include "acme/filesystem/filesystem/path.h"
6
7
8class CLASS_DECL_ACME file_system :
9 virtual public object
10{
11public:
12
13
14 //::file::path m_pathCa2Module;
15 ::file::path m_pathModule;
16
17
18 file_system();
19 ~file_system() override;
20
21
22 virtual void initialize(::particle * pparticle) override;
23
24 virtual void init_system();
25
26 //virtual void update_module_path();
27
28
29 //virtual ::file::path get_last_run_application_path_file(string strAppId);
30 //virtual ::file::path get_last_run_application_path(string strAppId);
31 //virtual bool set_last_run_application_path(string strAppId);
32
33
34};
35
36
37
Definition path.h:51
Definition particle.h:89