~ubuntu-branches/ubuntu/precise/easystroke/precise

« back to all changes in this revision

Viewing changes to water.h

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Jaeger
  • Date: 2009-01-16 11:31:54 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090116113154-kqvaghw9phb6280b
Tags: 0.3.98.1-0ubuntu1
* New upstream beta (LP: #318051)
* Use lzma compression in the deb.
  - pass -Z lzma to dh_builddeb
  - Pre-Depend on dpkg (>= 1.14.12ubuntu3)
* Build-Depend on intltool for the i18n of the desktop file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2008, Thomas Jaeger <ThJaeger@gmail.com>
 
3
 *
 
4
 * Permission to use, copy, modify, and/or distribute this software for any
 
5
 * purpose with or without fee is hereby granted, provided that the above
 
6
 * copyright notice and this permission notice appear in all copies.
 
7
 *
 
8
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 
9
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 
10
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
 
11
 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 
12
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
 
13
 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
 
14
 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 
15
 */
 
16
#ifndef __WATER_H__
 
17
#define __WATER_H__
 
18
#include "trace.h"
 
19
#include "main.h"
 
20
#include <dbus/dbus-glib.h>
 
21
 
 
22
class Water : public Trace {
 
23
        DBusGConnection *bus;
 
24
        DBusGProxy *line_proxy;
 
25
 
 
26
        virtual void draw(Point p, Point q);
 
27
        virtual void start_() {}
 
28
        virtual void end_() {}
 
29
public:
 
30
        Water();
 
31
};
 
32
 
 
33
#endif