Changeset 4704


Ignore:
Timestamp:
07/21/10 16:14:34 (15 years ago)
Author:
Mathieu Morlighem
Message:

no need to keep SpawnProcessedInput for now

Location:
issm/trunk/src/c/objects/Inputs
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Inputs/BeamVertexInput.h

    r4702 r4704  
    4141                Input* SpawnBeamInput(int* indices);
    4242                Input* SpawnTriaInput(int* indices);
    43                 Input* SpawnProcessedInput(double (*f)(double)){ISSMERROR("not implemented yet");};
    4443                Input* PointwiseDivide(Input* inputB){ISSMERROR("not implemented yet");};
    4544                ElementResult* SpawnResult(int step, double time);
  • issm/trunk/src/c/objects/Inputs/BoolInput.h

    r4702 r4704  
    4141                Input* SpawnBeamInput(int* indices);
    4242                Input* SpawnTriaInput(int* indices);
    43                 Input* SpawnProcessedInput(double (*f)(double)){ISSMERROR("not implemented yet");};
    4443                Input* PointwiseDivide(Input* inputB){ISSMERROR("not implemented yet");};
    4544                ElementResult* SpawnResult(int step, double time);
  • issm/trunk/src/c/objects/Inputs/DoubleInput.h

    r4702 r4704  
    4040                Input* SpawnBeamInput(int* indices);
    4141                Input* SpawnTriaInput(int* indices);
    42                 Input* SpawnProcessedInput(double (*f)(double)){ISSMERROR("not implemented yet");};
    4342                Input* PointwiseDivide(Input* inputB){ISSMERROR("not implemented yet");};
    4443                ElementResult* SpawnResult(int step, double time);
  • issm/trunk/src/c/objects/Inputs/Input.h

    r4702 r4704  
    4545                virtual Input* SpawnBeamInput(int* indices)=0;
    4646                virtual Input* SpawnTriaInput(int* indices)=0;
    47                 virtual Input* SpawnProcessedInput(double (*f)(double))=0;
    4847                virtual Input* PointwiseDivide(Input* inputB)=0;
    4948                virtual ElementResult* SpawnResult(int step, double time)=0;
  • issm/trunk/src/c/objects/Inputs/IntInput.h

    r4702 r4704  
    4141                Input* SpawnBeamInput(int* indices);
    4242                Input* SpawnTriaInput(int* indices);
    43                 Input* SpawnProcessedInput(double (*f)(double)){ISSMERROR("not implemented yet");};
    4443                Input* PointwiseDivide(Input* inputB){ISSMERROR("not implemented yet");};
    4544                ElementResult* SpawnResult(int step, double time);
  • issm/trunk/src/c/objects/Inputs/PentaVertexInput.h

    r4702 r4704  
    4040                Input* SpawnBeamInput(int* indices);
    4141                Input* SpawnTriaInput(int* indices);
    42                 Input* SpawnProcessedInput(double (*f)(double)){ISSMERROR("not implemented yet");};
    4342                Input* PointwiseDivide(Input* inputB);
    4443                ElementResult* SpawnResult(int step, double time);
  • issm/trunk/src/c/objects/Inputs/SingVertexInput.h

    r4702 r4704  
    4040                Input* SpawnBeamInput(int* indices);
    4141                Input* SpawnTriaInput(int* indices);
    42                 Input* SpawnProcessedInput(double (*f)(double)){ISSMERROR("not implemented yet");};
    4342                Input* PointwiseDivide(Input* inputB){ISSMERROR("not implemented yet");};
    4443                ElementResult* SpawnResult(int step, double time);
  • issm/trunk/src/c/objects/Inputs/TriaVertexInput.h

    r4702 r4704  
    4141                Input* SpawnBeamInput(int* indices);
    4242                Input* SpawnTriaInput(int* indices);
    43                 Input* SpawnProcessedInput(double (*f)(double)){ISSMERROR("not implemented yet");};
    4443                Input* PointwiseDivide(Input* inputB){ISSMERROR("not implemented yet");};
    4544                ElementResult* SpawnResult(int step, double time);
Note: See TracChangeset for help on using the changeset viewer.