def test_BasicInit(self):
		myCPPGenManager = CPPGenManager("./temp")
		myCPPGenManager.initialize()
		#print myCPPGenManager.genSRCString("myFirstClass")
		#print myCPPGenManager.genINCString("myFirstClass")
		#print myCPPGenManager.genTestCodeString("MyFirstClass")
		myCPPGenManager.addClass("MyFirstClass")
		myCPPGenManager.addClass("MyFirstClass2")
		shutil.rmtree(myCPPGenManager.workingPath)
Esempio n. 2
0
#! /usr/bin/env python
import sys
import os
#sys.path.append(os.environ['PythonScriptRoot'])
#import EnvPython
import shutil
from CPPGenManager import CPPGenManager

#print "this script is not done yet!!!!!!"
#quit()

if len(sys.argv) > 1:
    projectName = sys.argv[1]
else:
    print "ERROR!!!!!: You need define your class name as the 1st parameter, e.g. \"initCPPProject.py myProjectName\""
    quit()

if len(sys.argv) > 2:
    projectPath = sys.argv[2] + '/' + projectName
else:
    projectPath = './' + projectName

print "We'll create your class:" + projectName + " in the path:" + projectPath

myCPPGenManager = CPPGenManager(projectPath)

myCPPGenManager.initialize()
Esempio n. 3
0
#! /usr/bin/env python
import sys
import os
#sys.path.append(os.environ['PythonScriptRoot'])
#import EnvPython
import shutil
from CPPGenManager import CPPGenManager


if len(sys.argv)>1:
	className=sys.argv[1]
else:
	print "ERROR!!!!!: You need define your class name as the 1st parameter, e.g. \"genClass.py MyFirstClass [ProjectPATH]\""
	quit()


if len(sys.argv)>2:
	projectPath=sys.argv[2]
else:
	projectPath='.'

print "We'll create your class:"+className+" in the path:"+projectPath

myCPPGenManager = CPPGenManager(projectPath)

myCPPGenManager.addClass(className)


Esempio n. 4
0
import os
#sys.path.append(os.environ['PythonScriptRoot'])
#import EnvPython
import shutil
from CPPGenManager import CPPGenManager

#print "this script is not done yet!!!!!!"
#quit()

if len(sys.argv)>1:
	projectName=sys.argv[1]
else:
	print "ERROR!!!!!: You need define your class name as the 1st parameter, e.g. \"initCPPProject.py myProjectName\""
	quit()

if len(sys.argv)>2:
	projectPath=sys.argv[2]+'/'+projectName
else:
	projectPath='./'+projectName

print "We'll create your class:"+projectName+" in the path:"+projectPath

myCPPGenManager = CPPGenManager(projectPath)

myCPPGenManager.initialize()