00001 //===-- Cell.h --------------------------------------------------*- C++ -*-===// 00002 // 00003 // The KLEE Symbolic Virtual Machine 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 00010 #ifndef KLEE_CELL_H 00011 #define KLEE_CELL_H 00012 00013 #include <klee/Expr.h> 00014 00015 namespace klee { 00016 class MemoryObject; 00017 00018 struct Cell { 00019 ref<Expr> value; 00020 }; 00021 } 00022 00023 #endif
1.5.8