~ubuntu-branches/ubuntu/trusty/3depict/trusty

« back to all changes in this revision

Viewing changes to src/filters/ionDownsample.h

  • Committer: Package Import Robot
  • Author(s): D Haley
  • Date: 2011-12-18 19:33:32 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20111218193332-1motgr3vg9xeh41b
Tags: 0.0.9-1
* Update to upstream 0.0.9 
* Close powerpc bug fixed by 0.0.8-1 (Closes: #655682) 
* Close mgl font parsing bug fixed by mathgl upstream (Closes: #623431)
* Fix unclean source package (Closes: #643039)

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
 
49
49
                //!return string naming the human readable type of this class
50
50
                virtual std::string typeString() const { return std::string(TRANS("Ion Sampler"));}
 
51
 
51
52
                
52
53
                
53
54
                //!Get the properties of the filter, in key-value form. First vector is for each output.
69
70
                void setPropFromBinding(const SelectionBinding &b) {ASSERT(false);} ;
70
71
        
71
72
                //!Get the stream types that will be dropped during ::refresh   
72
 
                int getRefreshBlockMask() const;
 
73
                unsigned int getRefreshBlockMask() const;
73
74
 
74
75
                //!Get the stream types that will be generated during ::refresh 
75
 
                int getRefreshEmitMask() const; 
 
76
                unsigned int getRefreshEmitMask() const;        
76
77
                
 
78
#ifdef DEBUG
 
79
                //Fire off the unit tests for this class. returns false if *any* test fails
 
80
                bool runUnitTests();
 
81
#endif
77
82
};
78
83
 
79
84
#endif