Ipopt Documentation
Loading...
Searching...
No Matches
SensSuffixHandler.hpp
Go to the documentation of this file.
1
// Copyright 2009, 2011 Hans Pirnay
2
// All Rights Reserved.
3
// This code is published under the Eclipse Public License.
4
//
5
// Date : 2009-08-01
6
7
#ifndef __SENS_ASSUFFIXHANDLER_HPP__
8
#define __SENS_ASSUFFIXHANDLER_HPP__
9
10
#include "
IpReferenced.hpp
"
11
#include <vector>
12
#include <string>
13
14
namespace
Ipopt
15
{
16
21
class
SuffixHandler
:
public
ReferencedObject
22
{
23
public
:
24
SuffixHandler
()
25
{ }
26
27
virtual
~SuffixHandler
()
28
{ }
29
30
virtual
std::vector<Index>
GetIntegerSuffix
(
31
std::string suffix_string
32
) = 0;
33
};
34
35
}
36
37
#endif
IpReferenced.hpp
Ipopt::ReferencedObject
Storing the reference count of all the smart pointers that currently reference it.
Definition
IpReferenced.hpp:170
Ipopt::SuffixHandler
This class is the interface for all classes that can return indices.
Definition
SensSuffixHandler.hpp:22
Ipopt::SuffixHandler::SuffixHandler
SuffixHandler()
Definition
SensSuffixHandler.hpp:24
Ipopt::SuffixHandler::GetIntegerSuffix
virtual std::vector< Index > GetIntegerSuffix(std::string suffix_string)=0
Ipopt::SuffixHandler::~SuffixHandler
virtual ~SuffixHandler()
Definition
SensSuffixHandler.hpp:27
Ipopt
This file contains a base class for all exceptions and a set of macros to help with exceptions.
Definition
IpInexactAlgBuilder.hpp:14