~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to src/core/Service/ProcessServiceTest/.svn/text-base/ProcessServiceTest.cs.svn-base

  • Committer: Jorge O. Castro
  • Date: 2007-12-03 06:56:46 UTC
  • Revision ID: jorge@ubuntu.com-20071203065646-mupcnjcwgm5mnhyt
* Remove a bunch of .svn directories we no longer need.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/****************************************************************************
2
 
 |
3
 
 | Copyright (c) 2007 Novell, Inc.
4
 
 | All Rights Reserved.
5
 
 |
6
 
 | This program is free software; you can redistribute it and/or
7
 
 | modify it under the terms of version 2 of the GNU General Public License as
8
 
 | published by the Free Software Foundation.
9
 
 |
10
 
 | This program is distributed in the hope that it will be useful,
11
 
 | but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 | GNU General Public License for more details.
14
 
 |
15
 
 | You should have received a copy of the GNU General Public License
16
 
 | along with this program; if not, contact Novell, Inc.
17
 
 |
18
 
 | To contact Novell about this file by physical or electronic mail,
19
 
 | you may find current contact information at www.novell.com 
20
 
 |
21
 
 | Author: Novell
22
 
 |***************************************************************************/
23
 
 
24
 
 
25
 
using System;
26
 
 
27
 
namespace Simias.Service
28
 
{
29
 
        /// <summary>
30
 
        /// Summary description for Class1.
31
 
        /// </summary>
32
 
        class ProcessServiceTest : BaseProcessService
33
 
        {
34
 
                static ProcessServiceTest service;
35
 
                /// <summary>
36
 
                /// The main entry point for the application.
37
 
                /// </summary>
38
 
                static void Main(string[] args)
39
 
                {
40
 
                        service = new ProcessServiceTest();
41
 
                        service.Run();
42
 
                }
43
 
 
44
 
                protected override void Start()
45
 
                {
46
 
                }
47
 
 
48
 
                protected override void Stop()
49
 
                {
50
 
                }
51
 
 
52
 
                protected override void Pause()
53
 
                {
54
 
                }
55
 
 
56
 
                protected override void Resume()
57
 
                {
58
 
                }
59
 
 
60
 
                protected override void Custom(int messageId, string message)
61
 
                {
62
 
                }
63
 
        }
64
 
}