submitted 1.2.0

This commit is contained in:
Guenter Obiltschnig
2006-08-29 07:10:35 +00:00
parent f476bd6b32
commit 2d4078f392
1428 changed files with 25715 additions and 12456 deletions

View File

@@ -1,7 +1,7 @@
#
# Makefile
#
# $Id: //poco/1.1.0/Foundation/samples/Timer/Makefile#1 $
# $Id: //poco/1.2/Foundation/samples/Timer/Makefile#1 $
#
# Makefile for Poco Timer
#

View File

@@ -1,7 +1,7 @@
#
# sample.vmsbuild
#
# $Id: //poco/1.1.0/Foundation/samples/Timer/Timer.vmsbuild#1 $
# $Id: //poco/1.2/Foundation/samples/Timer/Timer.vmsbuild#1 $
#
EXE=Timer
Timer

View File

@@ -1,7 +1,7 @@
//
// Timer.cpp
//
// $Id: //poco/1.1.0/Foundation/samples/Timer/src/Timer.cpp#2 $
// $Id: //poco/1.2/Foundation/samples/Timer/src/Timer.cpp#1 $
//
// This sample demonstrates the Timer and Stopwatch classes.
//
@@ -32,16 +32,16 @@
//
#include "Foundation/Timer.h"
#include "Foundation/Thread.h"
#include "Foundation/Stopwatch.h"
#include "Poco/Timer.h"
#include "Poco/Thread.h"
#include "Poco/Stopwatch.h"
#include <iostream>
using Foundation::Timer;
using Foundation::TimerCallback;
using Foundation::Thread;
using Foundation::Stopwatch;
using Poco::Timer;
using Poco::TimerCallback;
using Poco::Thread;
using Poco::Stopwatch;
class TimerExample