// GenFem - A high-level finite element library
// Copyright (C) 2010-2026 Eric Bechet
//
// See the LICENSE file for license information and contributions.
// Please report all bugs and problems to <bechet@cadxfem.org>.

#ifndef _ELASTODYNAMICMULTLAG_INTERFACEDOMAIN_H_
#define _ELASTODYNAMICMULTLAG_INTERFACEDOMAIN_H_


#include "genSupports.h"
#include "genTerm.h"
#include "genTensors.h"
#include "genDataIO.h"



class InterfaceElastoDomain : public genSupport
{
 public :
  InterfaceElastoDomain(const genSupport &s) : genSupport(s) {
  }
  virtual ~InterfaceElastoDomain() {
  }
  
  
};



#endif// _ELASTODYNAMICMULTLAG_INTERFACEDOMAIN_H_
