~ubuntu-branches/ubuntu/lucid/tomboy/lucid-proposed

« back to all changes in this revision

Viewing changes to Tomboy/Addins/Tasque/RemoteControl.cs

Tags: upstream-0.12.2
Import upstream version 0.12.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// RemoteControl.cs created with MonoDevelop
 
2
// User: boyd at 9:41 PM 2/14/2008
 
3
 
 
4
using System;
 
5
using System.Collections.Generic;
 
6
 
 
7
using NDesk.DBus;
 
8
using org.freedesktop.DBus;
 
9
 
 
10
namespace Tasque
 
11
{
 
12
        [Interface ("org.gnome.Tasque.RemoteControl")]
 
13
        public class RemoteControl : MarshalByRefObject
 
14
        {
 
15
                public RemoteControl()
 
16
                {
 
17
                }
 
18
                
 
19
                public string CreateTask (string categoryName, string taskName,
 
20
                                                                  bool enterEditMode)
 
21
                {
 
22
                        return null;
 
23
                }
 
24
                
 
25
                public string[] GetCategoryNames ()
 
26
                {
 
27
                        return null;
 
28
                }
 
29
                
 
30
                public void ShowTasks ()
 
31
                {
 
32
                }
 
33
        }
 
34
}