Alien-SmokeQt
view release on metacpan or search on metacpan
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
generator/parser/rpp/appendedlist.h view on Meta::CPAN
size_t dynamicSize() const { return offsetBehindLastList() + classSize(); }
/**
* This is a class that allows you easily putting instances of your class into an ItemRepository as seen in itemrepository.h.
* All your class needs to do is:
* - Be implemented using the APPENDED_LIST macros.
* - Have a real copy-constructor that additionally takes a "bool dynamic = true" parameter, which should be given to initializeAppendedLists
* - Except for these appended lists, only contain directly copyable data like indices(no pointers, no virtual functions)
* - Implement operator==(..) which should compare everything, including the lists. @warning The default operator will not work!
* - Implement a hash() function. The hash should equal for two instances when operator==(..) returns true.
* - Should be completely functional without a constructor called, only the data copied
* - Implement a "bool persistent() const" function, that should check the reference-count or other information to decide whether the item should stay in the repository
* If those conditions are fulfilled, the data can easily be put into a repository using this request class.
* */
template<class Type, uint averageAppendedBytes = 8>
class AppendedListItemRequest {
public:
AppendedListItemRequest(const Type& item) : m_item(item) {
}
enum {
smoke/qt/qsci/qscintilla2_includes.h view on Meta::CPAN
#include <qsciabstractapis.h>
#include <qsciapis.h>
#include <qscicommand.h>
#include <qscicommandset.h>
#include <qscidocument.h>
#include <qsciglobal.h>
#include <qscilexerbash.h>
#include <qscilexerbatch.h>
#include <qscilexercmake.h>
#include <qscilexercpp.h>
#include <qscilexercsharp.h>
#include <qscilexercss.h>
#include <qscilexercustom.h>
#include <qscilexerd.h>
#include <qscilexerdiff.h>
( run in 2.564 seconds using v1.01-cache-2.11-cpan-de7293f3b23 )