// COETLS.H
//
// Copyright (c) 1997-1999 Symbian Ltd.  All rights reserved.
//

#if !defined(__COETLS_H__)
#define __COETLS_H__

class CCoeEnv;

inline CCoeEnv* TheCoe() { return((CCoeEnv*)Dll::Tls()); }
inline void SetTheCoe(CCoeEnv* aCoe) { Dll::SetTls(aCoe); }

#endif

