summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/cmakelibcpp/lib.cpp
blob: 7dc4b57d47f4147a01df315405b7ed260e5959c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#include <stdio.h>
#include <stdlib.h>

#include "%{APPNAMELC}.h"


Foo::Foo()
{
}

void Foo::doSomething()
{
   printf("Hello world !\n");
}