Changeset 11247


Ignore:
Timestamp:
01/30/12 09:19:21 (13 years ago)
Author:
Mathieu Morlighem
Message:

Added InputUpdateFromVector for Penpair

Location:
issm/trunk-jpl/src/c/objects/Loads
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/objects/Loads/Penpair.cpp

    r9883 r11247  
    266266/*FUNCTION Penpair::InputUpdateFromConstant(bool constant, int name) {{{1*/
    267267void  Penpair::InputUpdateFromConstant(bool constant, int name){
     268        /*Nothing updated yet*/
     269}
     270/*}}}*/
     271/*FUNCTION Penpair::InputUpdateFromVector(double* vector, int name, int type) {{{1*/
     272void  Penpair::InputUpdateFromVector(double* vector, int name, int type){
     273        /*Nothing updated yet*/
     274}
     275/*}}}*/
     276/*FUNCTION Penpair::InputUpdateFromVector(int* vector, int name, int type) {{{1*/
     277void  Penpair::InputUpdateFromVector(int* vector, int name, int type){
     278        /*Nothing updated yet*/
     279}
     280/*}}}*/
     281/*FUNCTION Penpair::InputUpdateFromVector(bool* vector, int name, int type) {{{1*/
     282void  Penpair::InputUpdateFromVector(bool* vector, int name, int type){
    268283        /*Nothing updated yet*/
    269284}
  • issm/trunk-jpl/src/c/objects/Loads/Penpair.h

    r10576 r11247  
    4646                /*}}}*/
    4747                /*Update virtual functions resolution: {{{1*/
    48                 void  InputUpdateFromVector(double* vector, int name, int type){_error_("Not implemented yet!");}
    49                 void  InputUpdateFromVector(int* vector, int name, int type){_error_("Not implemented yet!");}
    50                 void  InputUpdateFromVector(bool* vector, int name, int type){_error_("Not implemented yet!");}
     48                void  InputUpdateFromVector(double* vector, int name, int type);
     49                void  InputUpdateFromVector(int* vector, int name, int type);
     50                void  InputUpdateFromVector(bool* vector, int name, int type);
    5151                void  InputUpdateFromMatrixDakota(double* matrix, int nrow, int ncols,int name, int type){_error_("Not implemented yet!");}
    5252                void  InputUpdateFromVectorDakota(double* vector, int name, int type){_error_("Not implemented yet!");}
Note: See TracChangeset for help on using the changeset viewer.