Teamcenter C++ API Reference  2312
setDoubleArrayOperationDispatcher.hxx
Go to the documentation of this file.
1 /*==================================================================================================
2 
3 Copyright (c) 2007 UGS
4 Unpublished - All rights reserved
5 
6 ====================================================================================================
7 File description:
8 
9 Filename: setDoubleArrayOperationDispatcher.hxx
10 Module : extensionframework
11 
12 This is the root interface class of the setDoubleArrayOperationDispatcher. It contains of all the generic methods
13 for setDoubleArrayOperationDispatcher that can be reused by the derived classes.
14 
15 ====================================================================================================
16 Date Name Description of Change
17 $HISTORY$
18 ==================================================================================================*/
19 #ifndef setDoubleArrayOperationDispatcher_HXX
20 #define setDoubleArrayOperationDispatcher_HXX
21 
23 #include <extensionframework/libextensionframework_exports.h>
24 
25 namespace Teamcenter
26 {
27  class setDoubleArrayOperationDispatcher;
28  class PropOperationDispatcher;
29 }
30 
31 class EXTENSIONFRAMEWORK_API Teamcenter::setDoubleArrayOperationDispatcher : public Teamcenter::PropOperationDispatcher
32 {
33 public:
37 
38  void executePreConditions( METHOD_message_t & msg, va_list args ) const;
39  void executePreActions( METHOD_message_t & msg, va_list args ) const;
40  void executePostActions( METHOD_message_t & msg, va_list args ) const;
41 
42  void setDoubleArrayPreConditions( Teamcenter::BusinessObject* obj, const std::vector<double>& doubleValues, const std::vector<int>* isNullVals ) const;
43  void setDoubleArrayPreActions( Teamcenter::BusinessObject* obj, const std::vector<double>& doubleValues, const std::vector<int>* isNullVals ) const;
44  void setDoubleArrayBaseAction( Teamcenter::BusinessObject* obj, const std::vector<double>& doubleValues, const std::vector<int>* isNullVals ) const;
45  void setDoubleArrayPostActions( Teamcenter::BusinessObject* obj, const std::vector<double>& doubleValues, const std::vector<int>* isNullVals ) const;
46 
47  // Project 011450 changes
48  void setDoubleArrayPreConditions( METHOD_message_t* msgData, int num, const double* doubleValue, const logical* isNull ) const;
49  void setDoubleArrayPreActions( METHOD_message_t* msgData, int num, const double* doubleValue, const logical* isNull ) const;
50  void setDoubleArrayPostActions( METHOD_message_t* msgData, int num, const double* doubleValue, const logical* isNull ) const;
51  void setDoubleArrayBaseAction( METHOD_message_t* msgData, int num, const double* doubleValue, const logical* isNull ) const;
52 
53  void setDoubleArray( Teamcenter::BusinessObject* obj, const std::vector<double>& doubleValues, const std::vector<int>* isNullVals ) const;
54 
55  void execute(Teamcenter::BusinessObject* obj, std::vector<void*>& args ) const;
56  void execute( tag_t objTag, va_list args ) const;
57  void execute( Teamcenter::BusinessObject* obj, va_list args ) const;
58 
59 
60  //Fix compiler warnings that were hiding virtual functions
64 
65 };
66 
67 #include <extensionframework/libextensionframework_undef.h>
68 #endif //setDoubleArrayOperationDispatcher_HXX