Created
August 11, 2016 18:13
-
-
Save jerstlouis/d808915cf733de772f9fa09ab28389ca to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version" : 0.2, | |
"ModuleName" : "econTest1", | |
"Options" : { | |
"Warnings" : "All", | |
"TargetType" : "Executable", | |
"TargetFileName" : "econTest1", | |
"Libraries" : [ | |
"ecere" | |
], | |
"Console" : true | |
}, | |
"Configurations" : [ | |
{ | |
"Name" : "Debug", | |
"Options" : { | |
"Debug" : true, | |
"Optimization" : "None", | |
"PreprocessorDefinitions" : [ | |
"_DEBUG" | |
], | |
"FastMath" : false | |
} | |
}, | |
{ | |
"Name" : "Release", | |
"Options" : { | |
"Debug" : false, | |
"Optimization" : "Speed", | |
"FastMath" : true | |
} | |
} | |
], | |
"Files" : [ | |
"test.ec", | |
"test.econ" | |
], | |
"ResourcesPath" : "", | |
"Resources" : [ | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "ecere" | |
struct TestObject | |
{ | |
Color color; | |
}; | |
class App : Application | |
{ | |
void Main() | |
{ | |
File f = FileOpen("test.econ", read); | |
if(f) | |
{ | |
ECONParser parser { f = f }; | |
TestObject testObject { }; | |
TestObject * object = &testObject; | |
parser.GetObject(class(TestObject), &object); | |
PrintLn("Color is: ", testObject.color); | |
system("pause"); | |
delete parser; | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
color = { 12, 34, 56 } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment