summaryrefslogtreecommitdiff
path: root/processmodel/rendercontext_src/rendercontext.cpp
blob: 03acf7548de2fbe0856278a9879684744f414d8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "Poco/Process.h"
#include "Poco/PipeStream.h"
#include <deque>
#include <iostream>

int main(int argc, char** argv)
{
	std::deque<int> work_queue;
	int count=0;
	//while (true){
	//	std::cout<<count<<" "<<std::cin;
	//	count ++;
	//}
	std::cout<<"hello, world!"<<std::endl; //;
	return 0;
}