// --------------------------------------------------------------------------- // - Predpim.hpp - // - afnix:pim module - predicates declaration - // --------------------------------------------------------------------------- // - This program is free software; you can redistribute it and/or modify - // - it provided that this copyright notice is kept intact. - // - - // - This program is distributed in the hope that it will be useful, but - // - without any warranty; without even the implied warranty of - // - merchantability or fitness for a particular purpose. In no event shall - // - the copyright holder be liable for any direct, indirect, incidental or - // - special damages arising in any way out of the use of this software. - // --------------------------------------------------------------------------- // - copyright (c) 1999-2007 amaury darsch - // --------------------------------------------------------------------------- #ifndef AFNIX_PREDPIM_HPP #define AFNIX_PREDPIM_HPP #ifndef AFNIX_OBJECT_HPP #include "Object.hpp" #endif namespace afnix { /// this file contains the predicates associated with the afnix:pim /// standard module. /// @author amaury darsch /// the slot object predicate /// @param robj the current runnable /// @param nset the current nameset /// @param args the arguments list Object* pim_slotp (Runnable* robj, Nameset* nset, Cons* args); /// the appointer object predicate /// @param robj the current runnable /// @param nset the current nameset /// @param args the arguments list Object* pim_apptp (Runnable* robj, Nameset* nset, Cons* args); /// the assistant object predicate /// @param robj the current runnable /// @param nset the current nameset /// @param args the arguments list Object* pim_asstp (Runnable* robj, Nameset* nset, Cons* args); } #endif