source: trunk/FACT++/src/logtime.cc@ 10979

Last change on this file since 10979 was 10348, checked in by tbretz, 13 years ago
Undoing change committed by mistake in r10347.
File size: 1004 bytes
Line 
1#include "MessageDim.h"
2
3#include "tools.h"
4#include "Time.h"
5
6#include <iostream>
7
8int main(int, const char **)
9{
10 // We could use putenv to make the Configure class change the value...
11 setenv("DIM_DNS_NODE", "localhost", 0);
12
13 // Start a DimServer called TIME
14 DimServer::start("TIME");
15
16 // Some info on the console
17 std::cout << "Offering TIME/MESSAGE...\n" << std::endl;
18
19 // Setup a DimService called TIME/MESSAGE
20 MessageDimTX msg("TIME");
21 while (1)
22 {
23 // Send current time
24 msg.Message(Time().GetAsStr());
25
26 // wait approximately one second
27 usleep(1000000);
28 }
29
30 return 0;
31}
32
33// **************************************************************************
34/** @example logtime.cc
35
36This is a simple example how to log messages through the Dim network
37using MessageDimTX. Here we are offering the time once a second.
38
39The program is stopped by CTRL-C
40
41*/
42// **************************************************************************
Note: See TracBrowser for help on using the repository browser.