Lemma is an Electromagnetics API
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

DataReader.cpp 798B

1234567891011121314151617181920212223242526272829
  1. /* This file is part of Lemma, a geophysical modelling and inversion API */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. /**
  6. @file
  7. @author Trevor Irons
  8. @date 03/01/2010
  9. @version $Id: datareader.cpp 193 2014-11-10 23:51:41Z tirons $
  10. **/
  11. #include "DataReader.h"
  12. namespace Lemma {
  13. std::ostream &operator << (std::ostream &stream, const DataReader &ob) {
  14. stream << ob.Serialize() << "\n---\n"; // End of doc --- as a direct stream should encapulste thingy
  15. return stream;
  16. }
  17. DataReader::DataReader( ) : LemmaObject( ) {
  18. }
  19. DataReader::~DataReader() {
  20. }
  21. } // ----- end of Lemma name -----