Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
package-helpers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eliab Andi Artz
package-helpers
Commits
45413b72
Commit
45413b72
authored
2 years ago
by
Luis Guzmán
Browse files
Options
Downloads
Patches
Plain Diff
hplip: remove legacy data no longer used on latest version.
parent
03097afe
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
helpers/DATA/hplip/Common.h
+0
-74
0 additions, 74 deletions
helpers/DATA/hplip/Common.h
with
0 additions
and
74 deletions
helpers/DATA/hplip/Common.h
deleted
100755 → 0
+
0
−
74
View file @
03097afe
#ifndef _COMMON_H
#define _COMMON_H
#include
<iostream>
#include
<string>
#include
<string.h>
#include
<fstream>
#include
<unistd.h>
#include
<sstream>
#include
<vector>
#include
<map>
#include
<algorithm>
#include
<sstream>
using
namespace
std
;
typedef
pair
<
string
,
string
>
STRING_STRING_PAIR
;
typedef
vector
<
STRING_STRING_PAIR
>
PAIR_VECTOR
;
/** typedef struct _MODEL_DICT_ */
typedef
struct
_MODEL_DICT_
MODEL_DICT
;
/** typedef map< string, MODEL_DICT> */
typedef
map
<
string
,
MODEL_DICT
>
MODEL_DICT_MAP
;
/** typedef vector <string> */
typedef
vector
<
string
>
STRING_VECTOR
;
/** typedef map<string, string> */
typedef
map
<
string
,
string
>
STRING_PAIR
;
/** @struct _MODEL_DICT_
* @brief This structure contains models.dat info
* @var _MODEL_DICT_::s_tech_class
* Member 's_tech_class' contains tech_class info
* @var _MODEL_DICT_::s_sub_class
* Member 's_sub_class' contains sub_class info
* @var _MODEL_DICT_::s_family_class
* Member 's_family_class' contains family_class info
* @var _MODEL_DICT_::s_normal_model_name
* Member 's_normal_model_name' contains update model_name info
* @var _MODEL_DICT_::s_plugin
* Member 's_plugin' contains plugin info
* @var _MODEL_DICT_::s_plugin_reason
* Member 's_plugin_reason' contains plugin-reason info
* @var _MODEL_DICT_::model_variants
* Member 'model_variants' contains vector info of model variants
*/
struct
_MODEL_DICT_
{
string
s_tech_class
;
string
s_sub_class
;
string
s_family_class
;
string
s_normal_model_name
;
int
s_plugin
;
int
s_plugin_reason
;
STRING_VECTOR
model_variants
;
};
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment