Sha256: 36a412d342722f444d10c7f378a0989b2c66cd01266b29a33b710e02e844f1c5
Contents?: true
Size: 457 Bytes
Versions: 20
Compression:
Stored size: 457 Bytes
Contents
// -*- c++ -*- #pragma once #ifndef __REFLEX_SCREEN_H__ #define __REFLEX_SCREEN_H__ #include <xot/pimpl.h> #include <rays/bounds.h> #include <reflex/defs.h> namespace Reflex { class Screen { typedef Screen This; public: Screen (); virtual ~Screen (); virtual Bounds frame () const; operator bool () const; bool operator ! () const; struct Data; Xot::PSharedImpl<Data> self; };// Screen }// Reflex #endif//EOH
Version data entries
20 entries across 20 versions & 1 rubygems