blob: ebd1f8248d85d77ab56fd680b3952415f16065b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/**
* @file llvectorperfoptions.h
* @brief Control of vector performance options
*
* Copyright (c) 2001-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_VECTORPERFOPTIONS_H
#define LL_VECTORPERFOPTIONS_H
namespace LLVectorPerformanceOptions
{
void initClass(); // Run after configuration files are read.
void cleanupClass();
};
#endif
|