Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created August 11, 2016 18:13
Show Gist options
  • Save jerstlouis/d808915cf733de772f9fa09ab28389ca to your computer and use it in GitHub Desktop.
Save jerstlouis/d808915cf733de772f9fa09ab28389ca to your computer and use it in GitHub Desktop.
{
"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" : [
]
}
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;
}
}
}
{
color = { 12, 34, 56 }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment