~ubuntu-branches/ubuntu/saucy/rocs/saucy

« back to all changes in this revision

Viewing changes to RocsCore/ConcurrentHelpClasses.h

  • Committer: Package Import Robot
  • Author(s): Rohan Garg, Rohan Garg, Philip Muškovac
  • Date: 2013-06-21 02:04:20 UTC
  • mfrom: (1.1.27)
  • Revision ID: package-import@ubuntu.com-20130621020420-lzlui9y7qc6w3xog
Tags: 4:4.10.80-0ubuntu1
[ Rohan Garg ]
* New upstream release

[ Philip Muškovac ]
* Build-depend on libgrantlee-dev and libx11-dev
* Update rocs.install and not-installed 

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
    bool m_visibility;
61
61
};
62
62
 
 
63
struct PointerGraphicsUpdated {
 
64
    PointerGraphicsUpdated() {}
 
65
    typedef void result_type;
 
66
    void operator()(PointerPtr d) {
 
67
        d->setVisible(d->isVisible());
 
68
    }
 
69
};
 
70
 
 
71
struct DataGraphicsUpdated {
 
72
    DataGraphicsUpdated() {}
 
73
    typedef void result_type;
 
74
    void operator()(DataPtr d) {
 
75
        d->setVisible(d->isVisible());
 
76
    }
 
77
};
 
78
 
63
79
#endif