* create should return bool

This commit is contained in:
2015-04-18 16:12:22 -07:00
parent 0d1fae7aae
commit fd3a3d7f25
5 changed files with 37 additions and 4 deletions

View File

@@ -4,5 +4,12 @@
int main(int argc, char** argv)
{
IContext* ctx = new CContext;
if (ctx->create())
{
}
delete ctx;
return 0;
}