00001 //*****************************************************************// 00002 // Albany 2.0: Copyright 2012 Sandia Corporation // 00003 // This Software is released under the BSD license detailed // 00004 // in the file "license.txt" in the top-level Albany directory // 00005 //*****************************************************************// 00006 00007 00008 #ifndef ALBANY_ABSTRACTFIELDCONT_HPP 00009 #define ALBANY_ABSTRACTFIELDCONT_HPP 00010 00011 namespace Albany { 00012 00017 class AbstractFieldContainer { 00018 00019 public: 00020 00021 typedef std::vector<std::string> FieldContainerRequirements; 00022 00024 virtual ~AbstractFieldContainer() {}; 00025 00026 protected: 00027 00028 }; 00029 00030 00031 } 00032 00033 #endif // ALBANY_ABSTRACTFIELDCONT_HPP