18 lines
240 B
C++
18 lines
240 B
C++
#include "filesystem/paths.hpp"
|
|
|
|
namespace MF = myx::filesystem;
|
|
|
|
|
|
int main( int argc, char** argv )
|
|
{
|
|
(void)argc;
|
|
(void)argv;
|
|
MF::Paths paths;
|
|
|
|
paths.updatePaths();
|
|
paths.makePaths();
|
|
paths.findConfigFile( "test" );
|
|
|
|
return( 0 );
|
|
}
|